home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / comm / tftb.zip / BEEP.SLT next >
Text File  |  1992-04-24  |  707b  |  17 lines

  1. ////////////////////////////////////////////////////////////
  2. // PROGRAM: BEEP.SLT                                      //
  3. // AUTHOR:  Christopher Saunders                          //
  4. // DATE:    April 25th 1992                               //
  5. //                                                        //
  6. // INFORMATION                                            //
  7. // ~~~~~~~~~~~                                            //
  8. // Sends 3 beeps to the remote system.  It can be used to //
  9. // wake somebody up who has fallen asleep.                //
  10. ////////////////////////////////////////////////////////////
  11.  
  12. main()
  13. {
  14. cputs("^G^G^G");    // Sends 3 beeps (CTRL-Gs) - ASCII character 7
  15. }
  16.  
  17.